home *** CD-ROM | disk | FTP | other *** search
/ Macromedia Multimedia Showcase 5.1 / Macromedia - Multimedia Showcase 5.1 (Macromedia) (1996).ISO / pc / media / 14000.dir / 00020_Script_20 < prev    next >
Text File  |  1996-03-27  |  689b  |  20 lines

  1. -- SET UP PRESENTATION MODE, OR JUMP AHEAD
  2.  
  3. on exitFrame
  4.   global gMode
  5.   if gMode = #Presentation then
  6.     set theField = "Presentation Message"
  7.     set oldFont = the textFont of field theField
  8.     set oldSize = the textSize of field theField
  9.     set oldStyle = the textStyle of field theField
  10.     set the text of cast "Presentation Message" = the text of cast "Presentation Setup"
  11.     set the textFont of field theField = oldFont
  12.     set the textSize of field theField = oldSize
  13.     set the textStyle of field theField = oldStyle
  14.     StartPres()
  15.   else
  16.     set the text of cast "Presentation Message" = ""
  17.     -- jumpSequence(15000)
  18.     go to frame "skip"
  19.   end if
  20. end